home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / meschach / !Meschach / h / Omachine < prev    next >
Text File  |  1994-03-08  |  5KB  |  221 lines

  1. /* machine.h.  Generated automatically by configure.  */
  2. /* Any machine specific stuff goes here */
  3. /* Add details necessary for your own installation here! */
  4.  
  5. /* RCS id: $Id: $ */
  6.  
  7. /* This is for use with "configure" -- if you are not using configure
  8.     then use machine.van for the "vanilla" version of machine.h */
  9.  
  10. /* Note special macros: ANSI_C (ANSI C syntax)
  11.             SEGMENTED (segmented memory machine e.g. MS-DOS)
  12.             MALLOCDECL (declared if malloc() etc have
  13.                     been declared) */
  14.  
  15. #define const 
  16.  
  17. /* #undef MALLOCDECL */
  18. #define NOT_SEGMENTED 1
  19. #define HAVE_MEMORY_H 1
  20. /* #undef HAVE_COMPLEX_H */
  21. #define HAVE_MALLOC_H 1
  22. #define STDC_HEADERS 1
  23. #define HAVE_BCOPY 1
  24. #define HAVE_BZERO 1
  25. #define CHAR0ISDBL0 1
  26. #define WORDS_BIGENDIAN 1
  27. #define U_INT_DEF 1
  28. #define VARARGS 1
  29. #define HAVE_PROTOTYPES 1
  30. /* #undef HAVE_PROTOTYPES_IN_STRUCT */
  31.  
  32. /* for inclusion into C++ files */
  33. #ifdef __cplusplus
  34. #define ANSI_C 1
  35. #ifndef HAVE_PROTOTYPES 
  36. #define HAVE_PROTOTYPES 1
  37. #endif
  38. #ifndef HAVE_PROTOTYPES_IN_STRUCT
  39. #define HAVE_PROTOTYPES_IN_STRUCT 1
  40. #endif
  41. #endif /* __cplusplus */
  42.  
  43. /* example usage: VEC *PROTO(v_get,(int dim)); */
  44. #ifdef HAVE_PROTOTYPES
  45. #define    PROTO(name,args)    name args
  46. #else
  47. #define PROTO(name,args)    name()
  48. #endif /* HAVE_PROTOTYPES */
  49. #ifdef HAVE_PROTOTYPES_IN_STRUCT
  50. /* PROTO_() is to be used instead of PROTO() in struct's and typedef's */
  51. #define    PROTO_(name,args)    name args
  52. #else
  53. #define PROTO_(name,args)    name()
  54. #endif /* HAVE_PROTOTYPES_IN_STRUCT */
  55.  
  56. /* for basic or larger versions */
  57. #define COMPLEX 1
  58. #define SPARSE 1
  59.  
  60. /* for loop unrolling */
  61. /* #undef VUNROLL */
  62. /* #undef MUNROLL */
  63.  
  64. /* for segmented memory */
  65. #ifndef NOT_SEGMENTED
  66. #define    SEGMENTED
  67. #endif
  68.  
  69. /* if the system has malloc.h */
  70. #ifdef HAVE_MALLOC_H
  71. #define    MALLOCDECL    1
  72. #include    <malloc.h>
  73. #endif
  74.  
  75. /* any compiler should have this header */
  76. /* if not, change it */
  77. #include        <stdio.h>
  78.  
  79.  
  80. /* Check for ANSI C memmove and memset */
  81. #ifdef STDC_HEADERS
  82.  
  83. /* standard copy & zero functions */
  84. #define    MEM_COPY(from,to,size)    memmove((to),(from),(size))
  85. #define    MEM_ZERO(where,size)    memset((where),'\0',(size))
  86.  
  87. #ifndef ANSI_C
  88. #define ANSI_C 1
  89. #endif
  90.  
  91. #endif
  92.  
  93. /* standard headers */
  94. #ifdef ANSI_C
  95. #include    <stdlib.h>
  96. #include    <stddef.h>
  97. #include    <string.h>
  98. #include    <float.h>
  99. #endif
  100.  
  101.  
  102. /* if have bcopy & bzero and no alternatives yet known, use them */
  103. #ifdef HAVE_BCOPY
  104. #ifndef MEM_COPY
  105. /* nonstandard copy function */
  106. #define    MEM_COPY(from,to,size)    bcopy((char *)(from),(char *)(to),(int)(size))
  107. #endif
  108. #endif
  109.  
  110. #ifdef HAVE_BZERO
  111. #ifndef MEM_ZERO
  112. /* nonstandard zero function */
  113. #define    MEM_ZERO(where,size)    bzero((char *)(where),(int)(size))
  114. #endif
  115. #endif
  116.  
  117. /* if the system has complex.h */
  118. #ifdef HAVE_COMPLEX_H
  119. #include    <complex.h>
  120. #endif
  121.  
  122. /* If prototypes are available & ANSI_C not yet defined, then define it,
  123.     but don't include any header files as the proper ANSI C headers
  124.         aren't here */
  125. #ifdef HAVE_PROTOTYPES
  126. #ifndef ANSI_C
  127. #define ANSI_C  1
  128. #endif
  129. #endif
  130.  
  131. /* floating point precision */
  132.  
  133. /* you can choose single, double or long double (if available) precision */
  134.  
  135. #define FLOAT         1
  136. #define DOUBLE         2
  137. #define LONG_DOUBLE     3
  138.  
  139. /* #undef REAL_FLT */
  140. /* #undef REAL_DBL */
  141.  
  142. /* if nothing is defined, choose double precision */
  143. #ifndef REAL_DBL
  144. #ifndef REAL_FLT
  145. #define REAL_DBL 1
  146. #endif
  147. #endif
  148.  
  149. /* single precision */
  150. #ifdef REAL_FLT
  151. #define  Real float
  152. #define  LongReal float
  153. #define REAL FLOAT
  154. #define LONGREAL FLOAT
  155. #endif
  156.  
  157. /* double precision */
  158. #ifdef REAL_DBL
  159. #define Real double
  160. #define LongReal double
  161. #define REAL DOUBLE
  162. #define LONGREAL DOUBLE
  163. #endif
  164.  
  165.  
  166. /* machine epsilon or unit roundoff error */
  167. /* This is correct on most IEEE Real precision systems */
  168. #ifdef DBL_EPSILON
  169. #if REAL == DOUBLE
  170. #define    MACHEPS    DBL_EPSILON
  171. #elif REAL == FLOAT
  172. #define    MACHEPS    FLT_EPSILON
  173. #elif REAL == LONGDOUBLE
  174. #define MACHEPS LDBL_EPSILON
  175. #endif
  176. #endif
  177.  
  178. #define F_MACHEPS 1.19209e-07
  179. #define D_MACHEPS 2.22045e-16
  180.  
  181. #ifndef MACHEPS
  182. #if REAL == DOUBLE
  183. #define    MACHEPS    D_MACHEPS
  184. #elif REAL == FLOAT  
  185. #define MACHEPS F_MACHEPS
  186. #elif REAL == LONGDOUBLE
  187. #define MACHEPS D_MACHEPS
  188. #endif
  189. #endif
  190.  
  191. /* #undef M_MACHEPS */
  192.  
  193. /********************
  194. #ifdef DBL_EPSILON
  195. #define    MACHEPS    DBL_EPSILON
  196. #endif
  197. #ifdef M_MACHEPS
  198. #ifndef MACHEPS
  199. #define MACHEPS    M_MACHEPS
  200. #endif
  201. #endif
  202. ********************/
  203.  
  204. #define    M_MAX_INT 2147483647
  205. #ifdef    M_MAX_INT
  206. #ifndef MAX_RAND
  207. #define    MAX_RAND ((double)(M_MAX_INT))
  208. #endif
  209. #endif
  210.  
  211. /* for non-ANSI systems */
  212. #ifndef HUGE_VAL
  213. #define HUGE_VAL HUGE
  214. #endif
  215.  
  216.  
  217. #ifdef ANSI_C
  218. extern    int    isatty(int);
  219. #endif
  220.  
  221.